//===== eAthena Script ======================================= 
//= Hunter Skills Quests
//===== By: ================================================== 
//= Lupus, Reddozen
//===== Current Version: ===================================== 
//= 1.3d
//===== Compatible With: ===================================== 
//= eAthena Revision 3800+
//===== Description: ========================================= 
//= Temp quests for new skills for 2nd classes
//===== Additional Comments: ================================= 
//= 1.0 for fully working skills only [Lupus]
//= 1.1 Added more new skill quests for more classes [Lupus]
//= Somehow eA engine doesn't let you keep learn't skill V_V'
//= 1.2 Added to correct locations, correct NPC's, fixed
//= some of the items required and made them into real
//= quests. [Reddozen] 
//= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
//= 1.3a fixed an item ID typo, thx 2Spiritual Kid
//= 1.3b Splitted into different files [DracoRPG]
//= 1.3c Fixed some typos [IVBela]
//= 1.3d Changed NPC Name to the official [Lupus]
//============================================================


//============================================================
// yHޯ - ۼvb
//============================================================
payon_in02,54,13,7	script	ȰǨ#HS	55,{
	mes "[ȰǨ]";
	if(BaseJob!=Job_Hunter) goto L_hunterno;
	if(getskilllv(1009)) goto L_alreadyhave;
	if(JobLevel<40) goto L_nojob;

	mes "ڧiDAӯK@~";
	mes "oӧޯOڪaڤ@NNǤUӪ";
	mes "ڭ̮aګOuoӯKܤ[F";
	mes "OگzSIA";
	mes "@Ѧ~";
	next;
	mes "[ȰǨ]";
	mes "ڻݭnIF~";
	mes "5 AG_";
	mes "5 񪺦Ф";
	mes "30 d}";
	next;
	
	mes "[ȰǨ]";
	mes "ڨˬdUAaF.";
	next;
	
	if(countitem(724)<5 || countitem(7115)<5 || countitem(537)<30) goto L_noitems;//Items: Cursed_Ruby, Harpy_Feather, Pet_Food,
	delitem 724, 5;//Items: Cursed_Ruby,
	delitem 7115, 5;//Items: Harpy_Feather,
	delitem 537, 30;//Items: Pet_Food,
	
	mes "[ȰǨ]";
	mes "aӤF,";
	mes "ڨӱЧAڤޥHƪޯaI";
	skill 1009,1,0;
	close;

L_noitems:
	mes "[ȰǨ]";
	mes "ASaF.";
	mes "AFAӧڧa";
	close;
		
L_nojob:
	mes "AӯuyHɭ";
	mes "Aӧa.";
	mes "̰_X40šI";
	close;

L_alreadyhave:
	mes "~A^ӧڬݧڤFH";
	close;
	
L_hunterno:
	mes "گA򦣶ܡH";
	mes "ڷQAjHF ڥuOӦY";
	close;
}
